From e65f854c08c7d838d067a0c8832b5ae0be23b9af Mon Sep 17 00:00:00 2001 From: Sergey Ponomarev Date: Sat, 1 Jun 2024 14:44:48 +0300 Subject: [PATCH] luci-app-acme: Add dns_wait option Signed-off-by: Sergey Ponomarev --- .../htdocs/luci-static/resources/view/acme.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js b/applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js index 3054761546..b6f9ec4ff2 100644 --- a/applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js +++ b/applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js @@ -165,6 +165,13 @@ return view.extend({ o.depends("validation_method", "dns"); o.modalonly = true; + o = s.taboption('challenge_dns', form.Value, 'dns_wait', _('Wait for DNS update'), + _('Seconds to wait for a DNS record to be updated before continue.') + '
' + + '' + _('See more') + '' + ); + o.depends('validation_method', 'dns'); + o.modalonly = true; + o = s.taboption('advanced', form.Flag, 'staging', _('Use staging server'), _( -- 2.30.2